import Image from "next/image"; import { SiteConfig } from "@/shared/config/site-config"; import { Typography } from "@/components/ui/typography"; import { Card, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; interface VerifyRequestPageParams { params: Promise>; searchParams: Promise<{ [key: string]: string | string[] | undefined }>; } export default async function AuthVerifyRequestPage({ params: _p, searchParams: _s }: VerifyRequestPageParams) { return (
app icon {SiteConfig.title}
Almost There! { "To complete the verification, head over to your email inbox. You'll find a magic link from us. Click on it, and you're all set!" }
); }